home *** CD-ROM | disk | FTP | other *** search
- { View 50-lines screen in Text Mode }
- { Coded '95 by Paradise, 1995.III.3 }
- { Lublin, Poland }
- { paradise@bachus.umcs.lublin.pl }
- { }
- { Example : OBJ usage example }
- { }
- { Need : view50_3.obj }
- { }
- uses Crt;
-
- {$f+}
- procedure Body; external;
- {$l view50_3.obj}
- {$f-}
-
- begin
- Body;
- ReadKey;
- asm mov ax,3h; int 10h; end;
- end.